Skip to main content

Delete Project File Endpoint

Overview

This endpoint allows users to delete a specific file resource from a project.

Request Details

HTTP Method

DELETE

Route

/api/users/[user_id]/projects/[project_id]/resources/files/[context_file_id]

Route Parameters

ParameterTypeRequiredDescription
user_idintegerYesThe ID of the authenticated user
project_idintegerYesThe ID of the project
context_file_idintegerYesThe ID of the file to delete

Headers

HeaderValueRequiredDescription
Acceptapplication/jsonYesSpecifies the response format
Cookieneptun-sessionYesSession authentication cookie

Query Parameters

No query parameters required.

Response Format

Response Status Codes

Status CodeDescription
204Successfully deleted file
400Bad request (invalid parameters)
401Unauthorized (invalid or missing session)
403Forbidden (user_id mismatch)
404File not found
500Server error

Success Response (204 No Content)

No response body.

Error Response (404 Not Found)

{
"statusCode": 404,
"message": "File not found"
}

Code Examples

cURL Example

curl -X DELETE "https://neptun-webui.vercel.app/api/users/1/projects/789/resources/files/123" \
-H "Accept: application/json" \
-H "Cookie: neptun-session=your-session-cookie"

Python Example

import httpx

async def delete_project_file(
user_id: int,
project_id: int,
context_file_id: int,
session_cookie: str
) -> None:
url = f"https://neptun-webui.vercel.app/api/users/{user_id}/projects/{project_id}/resources/files/{context_file_id}"

async with httpx.AsyncClient() as client:
response = await client.delete(
url,
headers={
"Accept": "application/json",
"Cookie": f"neptun-session={session_cookie}"
}
)
response.raise_for_status()

TypeScript/JavaScript Example

async function deleteProjectFile(
userId: number,
projectId: number,
contextFileId: number,
sessionCookie: string
): Promise<void> {
const response = await fetch(
`https://neptun-webui.vercel.app/api/users/${userId}/projects/${projectId}/resources/files/${contextFileId}`,
{
method: 'DELETE',
headers: {
Accept: 'application/json',
Cookie: `neptun-session=${sessionCookie}`,
},
}
)

if (!response.ok) {
throw new Error(`HTTP error! status: ${response.status}`)
}
}

Notes

  • The session cookie is required for authentication
  • The project and file must belong to the specified user
  • All associated file data will be permanently deleted
  • This action cannot be undone
  • All IDs must be valid positive integers
  • File content and metadata will be permanently removed from storage